home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / program / multlang.zip / MDIAPP.DPR < prev    next >
Text File  |  1995-12-16  |  601b  |  25 lines

  1. program Mdiapp;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {MainForm},
  6.   Dtc in 'DTC.PAS' {DTCDlg},
  7.   Mdlgs in 'MDLGS.PAS' {DlgsDlg},
  8.   Mmsg in 'MMSG.PAS' {MMsgDlg},
  9.   Mctls in 'MCTLS.PAS' {MCtrlsDlg},
  10.   Mstrlst in 'MSTRLST.PAS' {StrListDlg},
  11.   Micons in 'MICONS.PAS' {Icons},
  12.   Mimpexp in 'MIMPEXP.PAS' {ImpExp},
  13.   Mobjsize in 'MOBJSIZE.PAS' {ObjSize},
  14.   Madpton in 'MADPTON.PAS' {AdptOn},
  15.   Mdefstr in 'MDEFSTR.PAS' {DefStr},
  16.   Medit in 'MEDIT.PAS' {Editor},
  17.   Mreg in 'MREG.PAS' {Register};
  18.  
  19. {$R *.RES}
  20.  
  21. begin
  22.   Application.CreateForm(TMainForm, MainForm);
  23.   Application.Run;
  24. end.
  25.